home *** CD-ROM | disk | FTP | other *** search
/ The Atari Compendium / The Atari Compendium (Toad Computers) (1994).iso / files / prgtools / mint / utilit~1 / gemtrm12.zoo / makefile < prev    next >
Encoding:
Makefile  |  1992-11-08  |  719 b   |  37 lines

  1. CFLAGS = -O
  2.  
  3. OBJS = gemterm.o vaproto.o txtwin.o utils.o rsc.o forms.o
  4.  
  5. default: gemterm.acc gxterm.ttp
  6.  
  7. clean: 
  8.     rm $(OBJS) gemterm.acc gxterm.ttp
  9.  
  10. gemterm.acc: $(OBJS)
  11.     gcc -o gemterm.acc $(OBJS) -lgem
  12.  
  13. gxterm.ttp: gxterm.c
  14.         gcc $(CFLAGS) -o gxterm.ttp gxterm.c
  15.  
  16. gemterm.sym: $(OBJS)
  17.     sym-ld -o gemterm.sym c:\\lib\\crt0.o $(OBJS) -lgnu -lgem
  18.  
  19. vaproto.o: vaproto.c vaproto.h
  20.     gcc $(CFLAGS) -c vaproto.c
  21.  
  22. utils.o: utils.c txtwin.h
  23.     gcc $(CFLAGS) -c utils.c
  24.  
  25. txtwin.o: txtwin.c txtwin.h
  26.     gcc $(CFLAGS) -c txtwin.c
  27.  
  28. gemterm.o: gemterm.c vaproto.h txtwin.h
  29.     gcc $(CFLAGS) -c gemterm.c
  30.  
  31. forms.o: forms.c gemterm.h
  32.     gcc $(CFLAGS) -c forms.c
  33.  
  34. rsc.o: rsc.c
  35.     gcc $(CFLAGS) -c rsc.c
  36.  
  37.